/* Hindi Alphabet & Sound Awareness Tool - Kids Centric Design */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --hindi-font: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

small{
    font-weight: 600;
    font-family: var(--hindi-font);
}

/* Basic Words & Vocabulary Level Styles */
#basicWordsOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.drag-item img {
    width: 4rem;
}

#basicWordsContainer {
  width: 90%;
  height: 90%;
  background: white;
  border: 3px solid #ffc62f;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header Styles */
.basic-words-header {
  background: linear-gradient(45deg, #dfab46 40%, #dfb86d 40%, #dfab46 61%);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #ffc62f;;
  position: relative;
}

.level-title-container h1 {
  margin: 0;
  color: #1e1e1e;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.level-subtitle {
  color: #1e1e1e;
  font-size: 1.2rem;
  margin: 5px 0 0 0;
  opacity: 0.9;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 3px;
  right: 3px;
  background: #1e1e1e;
  border: 2px solid #ffc62f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-btn:hover {
  background: #ff3333;
  transform: rotate(90deg) scale(1.1);
}

.close-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* Score Progress Container */
.score-progress-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ddd;
}

.score-display {
  background: #1e1e1e;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1.3rem;
  font-weight: bold;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.progress-section {
  flex-grow: 1;
  margin-left: 30px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  color: #1e1e1e;
  font-weight: bold;
}

.progress-bar-bg {
  height: 20px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffc62f 0%, #ffd700 100%);
  border-radius: 10px;
  width: 0%;
  transition: width 0.5s ease;
}

/* Main Content Layout */
.basic-words-main {
  display: flex;
  height:100%;
  overflow-y: auto;
}

/* Navigation Buttons */
.nav-buttons-container {
  width: 25%;
  background: #f8f9fa;
  padding: 20px;
  overflow-y: auto;
  border-right: 2px solid #ddd;
}

.nav-btn {
  background: #ffc62f;
  color: #1e1e1e;
  border: none;
  padding: 15px 20px;
  margin: 10px 0;
  width: 100%;
  text-align: left;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



.nav-btn:hover {
  background: #ffd700;
  transform: translateX(5px);
}

.nav-btn.active {
  background: #1e1e1e;
  color: white;
}

.nav-btn-completed {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #27ae60;
}

/* Content Area */
.content-area {
  width: 75%;
  padding: 30px;
  overflow-y: auto;
  background: white;
  font-family: var(--hindi-font);
}

.content-section {
  display: none;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-section.active {
  display: block;
}

/* Content Sections Styling */
.section-header {
  color: #1e1e1e;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #ffc62f;
}

.section-header h2 {
  margin: 0;
  font-size: 1.5rem;
}

#basicWordsOverlay h3{
  font-size: var(--fs-16-24);
}


.section-subtitle {
  color: #666;
  margin-top: 5px;
  font-size: 1.1rem;
}

/* Introduction Section */
.intro-points {
  background: #fff9e6;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
  border-left: 5px solid #ffc62f;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(auto, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.point-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #ffc62f;
}

.point-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.point-title::before {
  content: "•";
  color: #ffc62f;
  font-size: 2rem;
}

/* Greetings Section */
.greeting-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.greeting-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 2px solid #ffc62f;
}

.greeting-card:hover {
  transform: translateY(-5px);
}

.hindi-word {
  font-size: 2.5rem;
  color: #1e1e1e;
  font-weight: bold;
  margin: 10px 0;
}

.english-meaning {
  color: #666;
  font-size: 1.1rem;
}

.example {
  background: white;
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
  font-style: italic;
  border-left: 4px solid #1e1e1e;
}

/* Numbers Section */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin: 25px 0;
}

.number-card {
  background: linear-gradient(135deg, #ffc62f 0%, #ffd700 100%);
  color: #1e1e1e;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.number-hindi {
  font-size: 2rem;
  margin-bottom: 5px;
}

.number-english {
  font-size: 1.5rem;
  opacity: 0.9;
}

/* Colors & Animals & Family Sections */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.category-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #ddd;
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: #ffc62f;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card-hindi {
  font-size: 1.8rem;
  color: #1e1e1e;
  font-weight: bold;
  margin: 10px 0;
}

.card-english {
  color: #666;
  margin-bottom: 10px;
}

/* Activities Section */
.games-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.game-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.game-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.game-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.game-title {
  font-size: 1.5rem;
  margin: 10px 0;
  font-weight: bold;
}

.game-desc {
  opacity: 0.9;
  font-size: 1rem;
}

/* Assessment Section */
.quiz-container {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  margin: 25px 0;
}

.question-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 5px solid #ffc62f;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.option-btn {
  background: #ffc62f;
  color: #1e1e1e;
  border: none;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.option-btn:hover {
  background: #ffd700;
}

.option-btn.correct {
  background: #27ae60;
  color: white;
}

.option-btn.wrong {
  background: #e74c3c;
  color: white;
}

/* Success Popup */
.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10001;
}

.success-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  animation: popIn 0.5s ease;
}

@keyframes popIn {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.success-icon {
  font-size: 4rem;
  color: #27ae60;
  margin-bottom: 20px;
}

.success-message {
  font-size: 1.5rem;
  color: #1e1e1e;
  margin: 20px 0;
}

/* Game Popup */
.game-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10002;
}

.game-popup-content {
  background: white;
  width: 85%;
  height: 85%;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Game Specific Styles */
.match-game-container {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 30px;
  height: 100%;
  overflow-y: auto;
}
.match-game-content {
  display: flex;
  gap: 20px;
}
.images-container,
.words-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.drag-item {
  background: #ffc62f;
  color: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  cursor: grab;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.drag-item:hover {
  background: #ffd700;
  transform: translateY(-2px);
}

.drag-item.dragging {
  opacity: 0.5;
}

.drop-zone {
  background: #f8f9fa;
  border: 3px dashed #ddd;
  border-radius: 10px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.drop-zone.over {
  border-color: #27ae60;
  background: #e8f6f3;
}

.drop-zone.matched {
  border-color: #27ae60;
  background: #d5f4e6;
}

/* Memory Game Styles */
.memory-game-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow-y: auto;
}

.memory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 30px auto;
  max-width: 600px;
}

.memory-card {
  width: 120px;
  height: 120px;
  perspective: 1000px;
  cursor: pointer;
}

.memory-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.memory-card.flipped .memory-card-inner {
  transform: rotateY(180deg);
}

.memory-card-front,
.memory-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
}

.memory-card-front {
  background: linear-gradient(135deg, #ffc62f 0%, #ffd700 100%);
  color: #1e1e1e;
}

.memory-card-back {
  background: white;
  color: #1e1e1e;
  border: 3px solid #ffc62f;
  transform: rotateY(180deg);
}

.memory-card.matched {
  opacity: 0.7;
  cursor: default;
}

.memory-card.wrong {
  animation: wrongGuess 0.5s;
}

@keyframes wrongGuess {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}

/* Audio Game Styles */
.audio-game-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow-y: auto;
}

.audio-controls {
  margin: 30px 0;
}

.audio-btn {
  background: #3498db;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.audio-btn:hover {
  background: #2980b9;
  transform: scale(1.05);
}

.audio-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0;
  max-width: 500px;
  width: 100%;
}

.audio-option {
  background: #ffc62f;
  color: #1e1e1e;
  border: none;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.audio-option:hover {
  background: #ffd700;
}

.audio-option.correct {
  background: #27ae60;
  color: white;
}

.audio-option.wrong {
  background: #e74c3c;
  color: white;
}

.game-feedback {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.game-feedback.success {
  background: #d5f4e6;
  color: #27ae60;
  border: 2px solid #27ae60;
}

.game-feedback.error {
  background: #fadbd8;
  color: #e74c3c;
  border: 2px solid #e74c3c;
}

/* Scroll to top button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ffc62f;
  color: #1e1e1e;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

/* Game Controls */
.game-controls {
  padding: 20px;
  /* background: #f8f9fa; */
  border-top: 2px solid #ddd;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.control-btn {
  background: #1e1e1e;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .basic-words-main {
    flex-direction: column;
  }

  .nav-buttons-container,
  .content-area {
    width: 100%;
  }

  .nav-buttons-container {
    height: 200px;
    border-right: none;
    border-bottom: 2px solid #ddd;
  }

  .numbers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .match-game-container {
    flex-direction: column;
  }

  .memory-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 868px) {
  .score-progress-container {
    flex-direction: column;
    gap: 15px;
  }

  .progress-section {
    margin-left: 0;
    width: 100%;
  }

  .games-container {
    grid-template-columns: 1fr;
  }

  .options-grid {
    grid-template-columns: 1fr;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .memory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audio-options {
    grid-template-columns: 1fr;
  }
  .level-title-container h1 {
    font-size: 2rem;
  }
  /* ------------------------------  */

  #basicWordsContainer {
    height: 95%; /* Take full height on mobile */
    width: 95%;
    /* border-radius: 0; */
    overflow-y: auto; /* Allow the whole container to scroll */
    display: block; /* Change from flex to block so elements stack naturally */
  }

  /* Make Header Sticky */
  .basic-words-header {
    position: sticky;
    top: -160px;
    z-index: 100;
    padding: 15px;
  }

  /* Make Score Bar Sticky (below header) */
  .score-progress-container {
    position: sticky;
    top: -60px; /* Adjust based on your header height */
    z-index: 90;
    flex-direction: column;
    gap: 10px;
    padding: 10px 15px;
  }

  .progress-section {
    margin-left: 0;
    width: 100%;
  }

  /* Stack Main Content */
  .basic-words-main {
    display: block; /* Stack navigation above content */
    height: auto; /* Remove the fixed height calculation */
  }

  /* Navigation becomes a scrollable horizontal bar or a list that scrolls with page */
  .nav-buttons-container {
    width: 100%;
    height: 200px;
    border-right: none;
    border-bottom: 2px solid #ddd;
    padding: 10px;
    /* Optional: make nav sticky too, but might take too much screen space */
    /* position: sticky; top: 160px; z-index: 80; */
  }

  .nav-btn {
    margin: 5px 0;
    padding: 12px;
  }

  .content-area {
    width: 100%;
    padding: 20px;
    overflow: visible; /* Let the main container handle scrolling */
  }

  /* ---------------  */
  #match-pair-con,
  #listen-game-con,
  #momory-game-con {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    display: block;
  }

  .match-pair,
  .listen-voice,
  .memory-game-top {
    position: sticky;
    top: -160px; /* Adjust based on your header height */
    z-index: 90;
    flex-direction: column;
    gap: 10px;
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .memory-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ----------------------  */

.help-btn {
  background: #3498db;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

.help-btn:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.help-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10004;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.help-popup-content {
  background: white;
  border-radius: 20px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  animation: popupAppear 0.3s ease-out;
}

@keyframes popupAppear {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.help-header {
  background: linear-gradient(135deg, #1e1e1e 0%, #2c3e50 100%);
  color: white;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #ffc62f;
  word-break: break-all;
}

.help-header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ffc62f, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.close-help-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 5px 15px;
  line-height: 1;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-help-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffc62f;
  color: #ffc62f;
  transform: rotate(90deg);
}

.help-body {
  padding: 30px;
}

.help-section {
  margin-bottom: 30px;
  padding: 25px;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 15px;
  border-left: 6px solid #3498db;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.help-section:last-child {
  margin-bottom: 0;
  border-left: 6px solid #e74c3c;
}

.help-number {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3498db, #2c3e50);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(52, 152, 219, 0.4);
  border: 3px solid white;
}

.help-section:last-child .help-number {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  box-shadow: 0 4px 10px rgba(231, 76, 60, 0.4);
}

.help-section h3 {
  color: #2c3e50;
  margin: 0 0 15px 0;
  font-size: 1.5rem;
  font-weight: bold;
  padding-left: 40px;
}

.help-description {
  margin: 0;
  color: #555;
  line-height: 1.7;
  font-size: 1.1rem;
  padding: 15px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  border-left: 4px solid rgba(52, 152, 219, 0.3);
}

.help-section:last-child .help-description {
  border-left: 4px solid rgba(231, 76, 60, 0.3);
}



